// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... using JetBrains.Annotations; namespace LargoCommon.Midi { /// /// Midi Voice Message Type. /// public enum MidiVoiceMessageType { /// Message type. [UsedImplicitly] None = 0, /// Message type. VoiceNoteOff = 0x08, /// Message type. VoiceNoteOn = 0x09, /// Message type. PolyphonicKeyPressure = 0x0A, //// AFTERTOUCH /// Message type. ControllerChange = 0x0B, /// Message type. ProgramChange = 0x0C, /// Message type. ChannelKeyPressure = 0x0D, /// Message type. PitchBend = 0x0E //// PITCH WHEEL } }